home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1998 October / Macworld (1998-10).dmg / Serious Demos / Morpha / 3DO.DXR / 00023_special.ls < prev    next >
Encoding:
Text File  |  1998-07-31  |  353 b   |  17 lines

  1. property mys
  2.  
  3. on beginSprite me
  4.   set mys to the spriteNum of me
  5. end
  6.  
  7. on mouseEnter me
  8.   set the blend of sprite mys to 100
  9.   set the rect of sprite 33 to rect(200, 333, the locH of sprite mys, 334)
  10. end
  11.  
  12. on mouseLeave me
  13.   set the blend of sprite mys to 60
  14.   set the rect of sprite 33 to rect(-1000, -1000, -1000, -1000)
  15.   put " " into field "info"
  16. end
  17.